home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form PolyForm
- BackColor = &H00000000&
- Caption = "PolyGone II"
- ClientHeight = 1875
- ClientLeft = 210
- ClientTop = 495
- ClientWidth = 2550
- Height = 2280
- Icon = POLYGONE.FRX:0000
- Left = 150
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 1875
- ScaleWidth = 2550
- Top = 150
- Width = 2670
- DefSng A-Z
- Option Explicit
- ' PolyGone was written by Jim Mack, CIS 76630,2012
- ' It has no purpose other than to entertain, and is
- ' not copyrighted. If you modify this code, please
- ' send me a copy so I can have some more fun too!
- Sub Form_Click ()
- ' Clicking on the form cause a Clear next pass
- CLSFlag = True
- End Sub
- Sub Form_DblClick ()
- ' Double-click on form for parameters
- PolyParam.Show 1
- End Sub
- Sub Form_QueryUnload (Cancel As Integer, UnloadMode As Integer)
- SaveINI
- DoEvents
- End Sub
- Sub Form_Resize ()
- SizeAdapt
- End Sub
- Sub Form_Unload (Cancel As Integer)
- End
- End Sub
-